home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
__MANDEL
/
MANDELBR
/
CMANDELI.C
< prev
next >
Wrap
Text File
|
1992-04-14
|
570b
|
29 lines
// CMandelImagePhase.c
#include <CDWApplication.h>
#include "CMandelImagePhase.h"
extern CDWApplication *gApplication;
void
CMandelImagePhase::IMandelImagePhase(CMandelDoc *theMandelDoc, CMandelPhase *theNextPhase)
{
CMandelPhase::IMandelPhase(theMandelDoc, theNextPhase);
}
CMandelPhase *
CMandelImagePhase::Perform(void)
{
CMandelPhase *aPhase;
itsDoc->DoImage();
if (! (aPhase = itsNextPhase))
{
itsDoc->itsPhase = NULL;
itsDoc->itsElapsedTicks = TickCount() - itsDoc->itsElapsedTicks;
gApplication->NotifyUser();
Dispose();
}
return aPhase;
}